home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zoom 2
/
Zoom - Release 2 (1996)(Active Software)[!].iso
/
programming
/
basic
/
ace
/
externfunc
/
func2.b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-07-31
|
278 b
|
17 lines
{*
** A test of external function use.
** sub2.s (assembled to produce sub2.o)
** is used in conjunction with this:
**
** bas -O func2 sub2.o
*}
defint x,y
declare function subtract%(x%,y%) external
input "enter x: ",x
input "enter y: ",y
print x;"-";y;"=";subtract(x,y)